home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / DJLSR106.ARJ / HYPOT.C < prev    next >
C/C++ Source or Header  |  1991-03-10  |  88b  |  7 lines

  1. #include <math.h>
  2.  
  3. double hypot(double x, double y)
  4. {
  5.   return sqrt(x*x + y*y);
  6. }
  7.